home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / pmake / settm.mk < prev    next >
Text File  |  1992-06-10  |  1KB  |  33 lines

  1. #
  2. # This Makefile is included by the user's Makefile.  It sets the
  3. # target machine type (TM), though the user can override it in the
  4. # "make" command.  This operation is done here so that we can add
  5. # backward-compatible machine types (e.g., ds5000) and have users
  6. # easily treat the new machine type the same as the old one.
  7. #
  8. # $Header: /sprite/lib/pmake/RCS/settm.mk,v 1.3 92/06/10 13:05:28 jhh Exp $
  9.  
  10. # If there is only one allowable machine type, that's the default
  11. # target type.  Otherwise the default is the type we're running on
  12. # now.
  13.  
  14. NUM_MACHINES   != echo $(MACHINES) | wc -w
  15.  
  16. #if $(NUM_MACHINES) == 1
  17. TM           ?= $(MACHINES)
  18. #else
  19. TM           ?= $(MACHINE)
  20. #endif
  21.  
  22. # Map ds5000 to ds3100 (only if we are not in a kernel module as determined
  23. # by having a type of kernel). Also, if the type isn't defined then assume
  24. # we are not in a kernel module. This is to be backwards compatible with
  25. # older Makefiles..
  26.  
  27. #if !empty(TM:Mds5000) 
  28. #if !defined(TYPE) || empty(TYPE:Mkernel)
  29. TM        = ds3100
  30. #endif
  31. #endif
  32.